home *** CD-ROM | disk | FTP | other *** search
/ Champak 114 / Vol 114.iso / games / pico_2.swf / scripts / DefineSprite_768 / frame_1 / DoAction.as
Encoding:
Text File  |  2010-08-12  |  264 b   |  20 lines

  1. function changeIt()
  2. {
  3.    if(this.danum == "NO")
  4.    {
  5.       this.danum = "YES";
  6.    }
  7.    else
  8.    {
  9.       this.danum = "NO";
  10.    }
  11. }
  12. upp.onPress = function()
  13. {
  14.    this._parent.changeIt();
  15. };
  16. dwn.onPress = function()
  17. {
  18.    this._parent.changeIt();
  19. };
  20.